home *** CD-ROM | disk | FTP | other *** search
/ PC World 2004 June / PCWorld_2004-06_cd.bin / software / vyzkuste / koolmoves / kmsetup.exe / {app} / Motion Scripts / Punch Wave / effect2.txt
Text File  |  2004-02-26  |  430b  |  25 lines

  1. // main_init function
  2.  
  3. main_init = function(mc){
  4. }
  5.  
  6. // main_effect function
  7.  
  8. main_effect = function(mc,frame){
  9.  if(subs_done) end_effect=true;
  10. }
  11.  
  12. // sub_init function
  13.  
  14. sub_init = function(mc){
  15. }
  16.  
  17. // sub_effect function
  18.  
  19. sub_effect = function(mc,frame){
  20.  perc = frame / lastsubframe;
  21.  mc._xscale = mc._yscale = 100 + (max_scale - 100) * Math.sin(perc * deg180);
  22.  if (frame == lastsubframe) mc.done=true;
  23. }
  24.  
  25.